Make the failure reporting in testit a bit more useful. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@151719 91177308-0d34-0410-b5e6-96231b3b80d8 
diff --git a/test/testit b/test/testit index 774f96f..c740916 100755 --- a/test/testit +++ b/test/testit 
@@ -66,12 +66,14 @@ 	rm ./$TEST_EXE 	let "pass+=1" 	else -	echo "$FILE failed at run time" +	echo "`pwd`/$FILE failed at run time" +	echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS 	let "fail+=1" 	rm ./$TEST_EXE 	fi 	else -	echo "$FILE failed to compile" +	echo "`pwd`/$FILE failed to compile" +	echo "Compile line was:" $CC $OPTIONS $HEADER_INCLUDE $SOURCE_LIB $FILE $LIBS 	let "fail+=1" 	fi 	done